projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb8c3be
)
* process.c (sigchld_handler): Add cast, to avoid warnings on Linux.
author
Jim Blandy
<jimb@redhat.com>
Wed, 9 Jun 1993 12:30:13 +0000
(12:30 +0000)
committer
Jim Blandy
<jimb@redhat.com>
Wed, 9 Jun 1993 12:30:13 +0000
(12:30 +0000)
src/process.c
patch
|
blob
|
history
diff --git
a/src/process.c
b/src/process.c
index d0beafe6ad9931e5913a20c3bcd2949e66a3454e..d661aa92425cd675b3309a5802e0e8e055425d07 100644
(file)
--- a/
src/process.c
+++ b/
src/process.c
@@
-2819,7
+2819,7
@@
sigchld_handler (signo)
synch_process_retcode = WRETCODE (w);
else if (WIFSIGNALED (w))
#ifndef VMS
- synch_process_death = sys_siglist[WTERMSIG (w)];
+ synch_process_death =
(char *)
sys_siglist[WTERMSIG (w)];
#else
synch_process_death = sys_errlist[WTERMSIG (w)];
#endif